home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Info-Mac 4
/
Info_Mac IV CD-ROM (Pacific HiTech Inc.)(August 1994).iso
/
Development
/
General
/
ViewIt™ 2.24 Shareware
/
C Demo Projects
/
Metrowerks C 1.0a4 Demos
/
MinimumMC.c
< prev
next >
Wrap
C/C++ Source or Header
|
1994-04-09
|
283b
|
15 lines
/* Minimum MC Demonstration Program */
/* ©FaceWare 1991-94. All Rights Reserved. */
#include <string.h>
#include "FaceStorMC.h"
extern struct FaceRec fRec;
void main()
{
strcpy(fRec.uName, "Minimum.Rsrc");
FaceIt(0,DoInit,0,0,0,0);
for (;;) {
FaceIt(0,DoLoop,0,0,0,0);
}
}